home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / wamerican.postinst < prev    next >
Text File  |  2008-07-04  |  339b  |  20 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. . /usr/share/debconf/confmodule
  6.  
  7. # wamerican can be installed standalone, with no dictionaries-common,
  8. # so use update-default-wordlist if present and do not complain
  9. # otherwise
  10.  
  11. SCRIPT="/usr/sbin/update-default-wordlist"
  12.  
  13. if [ "$1" = "configure" ] ; then
  14.     if [ -x "$SCRIPT" ]; then
  15.     $SCRIPT  --rebuild
  16.     fi
  17. fi
  18.  
  19.  
  20.